rank | frequency | n-gram |
---|---|---|
1 | 14386 | -e |
2 | 12703 | -s |
3 | 6741 | -t |
4 | 4729 | -r |
5 | 4524 | -n |
rank | frequency | n-gram |
---|---|---|
1 | 5288 | -es |
2 | 3954 | -nt |
3 | 3171 | -er |
4 | 2435 | -on |
5 | 2034 | -re |
rank | frequency | n-gram |
---|---|---|
1 | 2526 | -ent |
2 | 1657 | -ion |
3 | 1119 | -ant |
4 | 992 | -ons |
5 | 725 | -ait |
rank | frequency | n-gram |
---|---|---|
1 | 1366 | -tion |
2 | 1089 | -ment |
3 | 600 | -ions |
4 | 547 | -ique |
5 | 394 | -ient |
rank | frequency | n-gram |
---|---|---|
1 | 917 | -ement |
2 | 902 | -ation |
3 | 437 | -tions |
4 | 303 | -aient |
5 | 252 | -iques |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings